home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 12260 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  468 b 

  1. Path: news.nstn.ca!news
  2. From: nstn181a@fox.nstn.ca (Pierre G. Boutquin)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: Leap year
  5. Date: Mon, 18 Mar 96 21:08:51 -0400
  6. Organization: Nova Scotia Technology Network
  7. Message-ID: <4il542$oim@news.nstn.ca>
  8. NNTP-Posting-Host: toronto-ts-31.nstn.ca
  9.  
  10. In <3146D0D8.16BA@msn.com>, "Poul A. Costinsky" writes:
  11. >return (!(y % 4) && (y % 100));
  12.  
  13. Noooo!
  14.  
  15. // There are 365.2422 days in a year.
  16. return (!(y%400) || (!(y%4) && y%100));
  17.  
  18.  
  19. Pierre.
  20.